676406d3748e0d3a10c812e1a35d8e26ffd48c5b,rabix-bindings-cwl/src/test/java/org/rabix/bindings/cwl/bean/CWLCommandLineToolTest.java,CWLCommandLineToolTest,test1stTool,#,21
Before Change
String encodedApp = URIHelper.createDataURI(BeanSerializer.serializeFull(cwlJob.getApp()));
Job job = new Job("id", "id", "id", "id", encodedApp, null, null, cwlJob.getInputs(), null, null, null, null);
Bindings bindings = new CWLBindings();
resultList = bindings.buildCommandLineParts(job, null, null);
Assert.assertNotNull(resultList);
Assert.assertEquals(resultList.size(), expectedList.size());
Assert.assertEquals(resultList, expectedList);
After Change
String encodedApp = URIHelper.createDataURI(BeanSerializer.serializeFull(cwlJob.getApp()));
Job job = new Job("id", "id", "id", "id", encodedApp, null, null, cwlJob.getInputs(), null, null, null, null);
Bindings bindings = new CWLBindings();
resultList = bindings.buildCommandLineObject(job, null, null).getParts();
Assert.assertNotNull(resultList);
Assert.assertEquals(resultList.size(), expectedList.size());
Assert.assertEquals(resultList, expectedList);